crypto/internal/fips140/sha3.Digest.outputLen (field)
12 uses
crypto/internal/fips140/sha3 (current package)
hashes.go#L9: return &Digest{rate: rateK448, outputLen: 28, dsbyte: dsbyteSHA3}
hashes.go#L14: return &Digest{rate: rateK512, outputLen: 32, dsbyte: dsbyteSHA3}
hashes.go#L19: return &Digest{rate: rateK768, outputLen: 48, dsbyte: dsbyteSHA3}
hashes.go#L24: return &Digest{rate: rateK1024, outputLen: 64, dsbyte: dsbyteSHA3}
hashes.go#L45: return &Digest{rate: rateK512, outputLen: 32, dsbyte: dsbyteKeccak}
hashes.go#L51: return &Digest{rate: rateK1024, outputLen: 64, dsbyte: dsbyteKeccak}
sha3.go#L51: outputLen int // the default output size in bytes
sha3.go#L59: func (d *Digest) Size() int { return d.outputLen }
sha3.go#L159: hash := make([]byte, dup.outputLen, 64) // explicit cap to allow stack allocation
shake.go#L51: c.d = Digest{rate: rate, outputLen: outputLen, dsbyte: dsbyte}
shake.go#L121: return &SHAKE{d: Digest{rate: rateK256, outputLen: 32, dsbyte: dsbyteShake}}
shake.go#L126: return &SHAKE{d: Digest{rate: rateK512, outputLen: 64, dsbyte: dsbyteShake}}
 |
The pages are generated with Golds v0.8.4. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |